博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Repeater实现数据绑定
阅读量:6002 次
发布时间:2019-06-20

本文共 2679 字,大约阅读时间需要 8 分钟。

Repeater基础在aspx文件中加入Repeater 控件,在
包含的范围里加入自己控制的代码,需要替换的变量使用<%# Eval("SellerName")%>;注意两侧的引号。.aspx:
  • <%# Eval("ComName")%>
  • 对应的后台cs中,在页面加载处加入数据绑定的代码:protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { DataTable dt = SellerDA.GetTopHotSellers(9); SellerRpt.DataSource = dt; SellerRpt.DataBind(); } } aspx中"SellerName"、"ComName"为DataTable 中的列名。优化直接使用DataItem可减少Eval函数的执行步骤,优化页面解析时间:<%# ((DataRowView)Container.DataItem)["SellerName"]%>替换<%# Eval("SellerName")%><%--其他绑定方法,可以对没有列明如数组进行绑定--%> <%#Container.DataItem %><%--绑定格式等--%> <%#Eval("times","{0:yyyy-MM-dd}")%> <%#Eval("price","{C:货币}")%> ArrayList数据源如果数据源是ArrayList,并且ArrayList为一列string数组,则可不用写出列名:.aspx:
    <%#Container.DataItem%>
    .cs: ArrayList alterText; AdDA.GetIndexTopList(out alterText); topAdHintRpt.DataSource = alterText; topAdHintRpt.DataBind(); 处理后显示某些情况下,数据库中检索出来的数据并不适合直接显示出来,想要适当处理后显示(eg:日期的格式,字符串长度的控制),可使用标签来占位,在onitemdatabound函数中自行控制:.aspx:
    .cs:protected void ProRpt_ItemDataBound(object sender, RepeaterItemEventArgs e) { if (e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItemType.AlternatingItem) { DataRowView rowv = (DataRowView)e.Item.DataItem;//找到分类Repeater关联的数据项 string strDate = rowv["clDate"].ToString(); Label DateLB = e.Item.FindControl("colinDate") as Label; DateLB.Text = strDate.Substring(0, 10); } } 嵌套Reapeter的显示对于某些复杂的显示逻辑,需用用到Reapeter的嵌套,这里需要自行控制2层数据源的数据绑定:.aspx:
    <%# Eval("Name")%>: <%# Eval("Value")%>
    .cs:protected void ProRpt_ItemDataBound(object sender, RepeaterItemEventArgs e) { //判断里层repeater处于外层repeater的哪个位置( AlternatingItemTemplate,FooterTemplate, //HeaderTemplate,,ItemTemplate,SeparatorTemplate if (e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItemType.AlternatingItem) { Repeater rep = e.Item.FindControl("ParaRpt") as Repeater;//找到里层的repeater对象 DataRowView rowv = (DataRowView)e.Item.DataItem;//找到分类Repeater关联的数据项 string str = Convert.ToString(rowv["Pro_Content"]); //获取填充子类的内容 rep.DataSource = Product.FillPara(str); rep.DataBind(); } } //三重绑定可以在二重绑定方法中加入事件  rep.ItemDataBound += new RepeaterItemEventHandler(rpt_ItemDataBound);

    转自:

    转载于:https://www.cnblogs.com/jasonzeng/p/4059458.html

    你可能感兴趣的文章
    BASH编程入门手册[未完成,待续..]
    查看>>
    Java 多线程协调工具 CyclicBarrier 与CountDownLatch 学习
    查看>>
    Incorrect string value: '\xE4\xB8\xAD\xE5\x9B\xBD.
    查看>>
    java内存笔记
    查看>>
    solr5.5以上版本在tomcat8下运行
    查看>>
    PropertyDescriptor
    查看>>
    在PHP中使用Mockery进行测试驱动开发(TDD) - 上
    查看>>
    【AngularJS】—— 10 指令的复用
    查看>>
    hibernate 怎么增加 comment
    查看>>
    python实现一个简单的爬虫搜索功能
    查看>>
    maven将main 方法写入mainfest中
    查看>>
    js json字符串转换为json对象之引申问题
    查看>>
    php根据ip获取地址信息
    查看>>
    python fire
    查看>>
    C++ static 静态类对象构造
    查看>>
    javaSe-集合
    查看>>
    获取城市PM2.5的python代码
    查看>>
    [原创] Android SDK 安装全记录
    查看>>
    Spring--quartz中cronExpression配置说明
    查看>>
    servlet学习之路
    查看>>